17 lines
173 B
C++
17 lines
173 B
C++
#ifndef __View_h__
|
|
#define __View_h__
|
|
|
|
#include "MString.h"
|
|
|
|
namespace http {
|
|
|
|
class View : public coreutils::MString {
|
|
|
|
public:
|
|
View();
|
|
|
|
};
|
|
|
|
}
|
|
|
|
#endif |