Commit 2337b22a authored by neverlord's avatar neverlord

util::duration

parent c33ee255
...@@ -24,6 +24,7 @@ libcppa_la_SOURCES = \ ...@@ -24,6 +24,7 @@ libcppa_la_SOURCES = \
src/delegate.cpp \ src/delegate.cpp \
src/demangle.cpp \ src/demangle.cpp \
src/deserializer.cpp \ src/deserializer.cpp \
src/duration.cpp \
src/exception.cpp \ src/exception.cpp \
src/fiber.cpp \ src/fiber.cpp \
src/group.cpp \ src/group.cpp \
...@@ -161,6 +162,7 @@ nobase_library_include_HEADERS = \ ...@@ -161,6 +162,7 @@ nobase_library_include_HEADERS = \
cppa/util/conjunction.hpp \ cppa/util/conjunction.hpp \
cppa/util/disable_if.hpp \ cppa/util/disable_if.hpp \
cppa/util/disjunction.hpp \ cppa/util/disjunction.hpp \
cppa/util/duration.hpp \
cppa/util/element_at.hpp \ cppa/util/element_at.hpp \
cppa/util/enable_if.hpp \ cppa/util/enable_if.hpp \
cppa/util/eval_first_n.hpp \ cppa/util/eval_first_n.hpp \
......
#ifndef DURATION_HPP
#define DURATION_HPP
class duration
{
public:
duration();
};
#endif // DURATION_HPP
#include "cppa/util/duration.hpp"
duration::duration()
{
}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment