MFMv2.0.10
Movable Feast Machine Simulator 2.0.10
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
StdElements.h
Go to the documentation of this file.
1 /* -*- mode:C++ -*- */
2 
3 /*
4  StdElements.h - A class to create references to all the distribution standard elements
5  Copyright (C) 2014 The Regents of the University of New Mexico. All rights reserved.
6 
7  This library is free software; you can redistribute it and/or
8  modify it under the terms of the GNU Lesser General Public
9  License as published by the Free Software Foundation; either
10  version 2.1 of the License, or (at your option) any later version.
11 
12  This library is distributed in the hope that it will be useful,
13  but WITHOUT ANY WARRANTY; without even the implied warranty of
14  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15  Lesser General Public License for more details.
16 
17  You should have received a copy of the GNU General Public License
18  along with this library; if not, write to the Free Software
19  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301
20  USA
21 */
22 
29 #ifndef STDELEMENTS_H
30 #define STDELEMENTS_H
31 
32 #include "itype.h"
33 #include "CoreConfig.h"
34 
35 namespace MFM {
36 
37  template <class CC>
38  class StdElements {
39  private:
40  u32 m_stdElements;
41  public:
42  StdElements() ;
43  u32 GetStdElementCount() { return m_stdElements; }
44  };
45 } /* namespace MFM */
46 
47 #include "StdElements.tcc"
48 
49 #endif /*STDELEMENTS_H*/
50 
Definition: StdElements.h:38