1 |
// Bender |
2 |
// |
3 |
// Douglas Thrift |
4 |
// |
5 |
// $Id$ |
6 |
|
7 |
#ifndef _Bender_hpp_ |
8 |
#define _Bender_hpp_ |
9 |
|
10 |
#include <menes/platform.hpp> |
11 |
|
12 |
#ifdef MENES_PRAGMA_ONCE |
13 |
#pragma once |
14 |
#endif |
15 |
|
16 |
#ifdef _WIN32 |
17 |
#pragma warning(disable:4267) |
18 |
#endif |
19 |
|
20 |
#include <menes-api/console.hpp> |
21 |
#include <menes-api/environment.hpp> |
22 |
#include <menes-ext/casts.hpp> |
23 |
#include <menes-ext/foreach.hpp> |
24 |
#include <menes-ext/string.hpp> |
25 |
#include <menes-ios/helpers.hpp> |
26 |
|
27 |
class Bender |
28 |
{ |
29 |
private: |
30 |
void bend(const ext::String& path, const ext::String& agent); |
31 |
void bend(const ext::String& path); |
32 |
void pass(const ext::String& path); |
33 |
public: |
34 |
Bender(); |
35 |
}; |
36 |
|
37 |
#endif // _Bender_hpp_ |