blob: d88875526c762977301085d686bf19ed92be26fa (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef NULLSOFT_ML_WIRE_IFC_ARTICLE_H
#define NULLSOFT_ML_WIRE_IFC_ARTICLE_H
#include <bfc/dispatch.h>
class ifc_article
{
protected:
ifc_article() {}
~ifc_article() {}
public:
};
#endif
|