1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
|
/*
Copyright (C) 2000-2001 Jae Choon Cha.
This file is part of CBraid.
CBraid is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
any later version.
CBraid is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with CBraid. If not, see <https://www.gnu.org/licenses/>.
*/
/*
$Id: cbraid.h,v 1.17 2001/12/07 10:12:13 jccha Exp $
Jae Choon Cha <jccha@knot.kaist.ac.kr>
Main header file of cbraid library.
*/
#ifndef _cbraid_h_
#define _cbraid_h_
#include <algorithm>
#include <functional>
#include <list>
#include <iostream>
#include <cstdlib>
#ifdef USE_CLN
#include <cln/cln.h>
#endif
namespace CBraid {
// Interfaces of cbraid library. All the declarations are here.
#include "cbraid_interface.h"
// Implementations of inline functions. Fairly many functions are
// defined as inline, because of the speed and efficiency. (Usually
// compilers can optimize inline functions better.)
#include "cbraid_implementation.h"
}
#endif // _cbraid_h_
|