David Blume's GitList
Repositories
testcode.git
Code
Commits
Branches
Tags
Search
Tree:
6e0f69c
Branches
Tags
c++11
main
start
testcode.git
product
scoped_set_adder.hpp
Added scoped_set_adder.
David Blume
commited
6e0f69c
at 2016-01-10 11:09:51
scoped_set_adder.hpp
Blame
History
Raw
#ifndef scoped_set_adder_h_ #define scoped_set_adder_h_ #include <string> class scoped_set_adder { public: scoped_set_adder(const std::string& name); ~scoped_set_adder(); scoped_set_adder(const scoped_set_adder&) = delete; scoped_set_adder& operator=(const scoped_set_adder&) = delete; bool dump() const; private: std::string name_; }; #endif