Linux multi-monitor fullscreen support
[ryzomcore.git] / nel / tools / 3d / pipeline_max / builtin / builtin.h
blob8a65a223ae0da444143954a1720bb37f130760b7
1 /**
2 * \file builtin.h
3 * \brief CBuiltin
4 * \date 2012-08-22 09:42GMT
5 * \author Jan Boon (Kaetemi)
6 * CBuiltin
7 */
9 /*
10 * Copyright (C) 2012 by authors
12 * This file is part of RYZOM CORE PIPELINE.
13 * RYZOM CORE PIPELINE is free software: you can redistribute it
14 * and/or modify it under the terms of the GNU Affero General Public
15 * License as published by the Free Software Foundation, either
16 * version 3 of the License, or (at your option) any later version.
18 * RYZOM CORE PIPELINE is distributed in the hope that it will be
19 * useful, but WITHOUT ANY WARRANTY; without even the implied warranty
20 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Affero General Public License for more details.
23 * You should have received a copy of the GNU Affero General Public
24 * License along with RYZOM CORE PIPELINE. If not, see
25 * <http://www.gnu.org/licenses/>.
28 #ifndef PIPELINE_BUILTIN_H
29 #define PIPELINE_BUILTIN_H
30 #include <nel/misc/types_nl.h>
32 // STL includes
34 // NeL includes
36 // Project includes
38 namespace PIPELINE {
39 namespace MAX {
41 class CSceneClassRegistry;
43 namespace BUILTIN {
45 /**
46 * \brief CBuiltin
47 * \date 2012-08-22 09:42GMT
48 * \author Jan Boon (Kaetemi)
49 * CBuiltin
51 class CBuiltin
53 public:
54 static void registerClasses(CSceneClassRegistry *registry);
56 private:
57 CBuiltin();
58 virtual ~CBuiltin();
60 }; /* class CBuiltin */
62 } /* namespace BUILTIN */
63 } /* namespace MAX */
64 } /* namespace PIPELINE */
66 #endif /* #ifndef PIPELINE_BUILTIN_H */
68 /* end of file */