HTTPServer/View.h
2024-07-09 20:21:46 -07:00

17 lines
173 B
C++

#ifndef __View_h__
#define __View_h__
#include "MString.h"
namespace http {
class View : public coreutils::MString {
public:
View();
};
}
#endif