forked from sstsimulator/sst-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
module.h
38 lines (31 loc) · 907 Bytes
/
module.h
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
// Copyright 2009-2015 Sandia Corporation. Under the terms
// of Contract DE-AC04-94AL85000 with Sandia Corporation, the U.S.
// Government retains certain rights in this software.
//
// Copyright (c) 2009-2015, Sandia Corporation
// All rights reserved.
//
// This file is part of the SST software package. For license
// information, see the LICENSE file in the top level directory of the
// distribution.
#ifndef SST_CORE_MODULE_H
#define SST_CORE_MODULE_H
namespace SST {
/**
Module is a tag class used with the loadModule function.
*/
class Module {
public:
Module() {}
virtual ~Module() {}
// private:
// friend class boost::serialization::access;
// template<class Archive>
// void
// serialize(Archive & ar, const unsigned int version )
// {
// }
};
} //namespace SST
// BOOST_CLASS_EXPORT_KEY(SST::Module)
#endif // SST_CORE_ACTION_H