12 lines
188 B
C++
12 lines
188 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
#include <boost/config.hpp>
|
|
|
|
class BOOST_SYMBOL_VISIBLE Interface {
|
|
public:
|
|
virtual const std::string name() const = 0;
|
|
virtual ~Interface() {}
|
|
};
|