Commit 9fe3c136 authored by Mccaskey, Alex's avatar Mccaskey, Alex
Browse files

adding license info to all source files

parent 3b261e6f
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
BSD 3-Clause License

Copyright (c) 2018, ORNL Quantum Computing Institute
Copyright (c) 2018-, UT-Battelle, LLC.
All rights reserved.

Redistribution and use in source and binary forms, with or without
+10 −0
Original line number Diff line number Diff line
/*******************************************************************************
 * Copyright (c) 2018-, UT-Battelle, LLC.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the BSD 3-Clause License 
 * which accompanies this distribution. 
 *
 * Contributors:
 *   Alexander J. McCaskey - initial API and implementation
 *   Thien Nguyen - implementation
 *******************************************************************************/
#pragma once
#define QCOR_LIB_SUFFIX "${CMAKE_SHARED_LIBRARY_SUFFIX}"
#define QCOR_INSTALL_DIR "${CMAKE_INSTALL_PREFIX}"
+10 −0
Original line number Diff line number Diff line
/*******************************************************************************
 * Copyright (c) 2018-, UT-Battelle, LLC.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the BSD 3-Clause License 
 * which accompanies this distribution. 
 *
 * Contributors:
 *   Alexander J. McCaskey - initial API and implementation
 *   Thien Nguyen - implementation
 *******************************************************************************/
#include "qcor_syntax_handler.hpp"

#include <iostream>
+10 −0
Original line number Diff line number Diff line
/*******************************************************************************
 * Copyright (c) 2018-, UT-Battelle, LLC.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the BSD 3-Clause License 
 * which accompanies this distribution. 
 *
 * Contributors:
 *   Alexander J. McCaskey - initial API and implementation
 *   Thien Nguyen - implementation
 *******************************************************************************/
#pragma once

#include "clang/Parse/Parser.h"
+10 −1
Original line number Diff line number Diff line

/*******************************************************************************
 * Copyright (c) 2018-, UT-Battelle, LLC.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the BSD 3-Clause License 
 * which accompanies this distribution. 
 *
 * Contributors:
 *   Alexander J. McCaskey - initial API and implementation
 *   Thien Nguyen - implementation
 *******************************************************************************/
#include "token_collector_helper.hpp"
#include <sstream>

Loading