-
Notifications
You must be signed in to change notification settings - Fork 212
/
IPhys.hpp
27 lines (22 loc) · 1016 Bytes
/
IPhys.hpp
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
/*************************************************************************
* Copyright (C) 2004 by Olivier Galizzi *
* *
* This program is free software; it is licensed under the terms of the *
* GNU General Public License v2 or later. See file LICENSE for details. *
*************************************************************************/
#pragma once
#include<yade/lib/base/Math.hpp>
#include<yade/lib/serialization/Serializable.hpp>
#include<yade/lib/multimethods/Indexable.hpp>
#include<yade/core/Dispatcher.hpp>
class IPhys : public Serializable, public Indexable
{
YADE_CLASS_BASE_DOC_ATTRS_CTOR_PY(IPhys,Serializable,"Physical (material) properties of :yref:`interaction<Interaction>`.",
/*attrs*/,
/*ctor*/,
/*py*/YADE_PY_TOPINDEXABLE(IPhys)
);
REGISTER_INDEX_COUNTER(IPhys);
};
REGISTER_SERIALIZABLE(IPhys);