次のオーバーロードを持つクラスがあります。
template<typename T>
ParamContainer &operator<<(keyValue<T> &couple)
{
insert(couple.key_, couple.value_);
return *(this);
}
およびキー値
template <typename T>
struct keyValue
{
std::string key_;
T value_;
keyValue(std::string key, T &value): key_(key), value_(value){}
};
そして、演算子 << を次のように呼び出したいと思います。
ParamContainer p;
p << ("value", "content") << ("id", 5);
だから私はこのことを定義しようとしました:
#define ParamContainer<<(X, Y) ParamContainer<<keyValue(X, Y)
また
#define ParamContainer::operator<<(X, Y) ParamContainer<<keyValue(X, Y)
しかし、それはコンパイルされていません:
src/TemplateEngine.hpp:48:25: warning: ISO C99 requires whitespace after the macro name [enabled by default] src/ControllerPost.cpp: In member function 'virtual void ControllerPost::operator()(boost::cmatch&, http::server3::reply&, boost::container::flat_map<std::basic_string<char>, std::shared_ptr<PostParam> >&)':
src/ControllerPost.cpp:32:19: error: expected unqualified-id before '<<' token
src/ControllerPost.cpp:32:19: error: 'X' was not declared in this scope
src/ControllerPost.cpp:32:19: note: suggested alternative:
/usr/local/include/boost/function/function_base.hpp:92:13: note: 'boost::detail::function::X'
src/ControllerPost.cpp:32:19: error: 'Y' was not declared in this scope
src/ControllerPost.cpp:32:19: error: expected ';' before 'ParamContainer'
src/ControllerPost.cpp:34:3: error: 'm' was not declared in this scope
32行目から:
TemplateEngine::ParamContainer m;
m << ("name", "value");
C++ シンボルを使用できない場合は、別の方法を見つけると思います