/* * File: StringList.h * Author: jgaebler * * Created on May 10, 2012, 11:43 AM */ #pragma once #ifndef STRINGLIST_H #define STRINGLIST_H #include "common/Defines.h" #include "common/container/List.h" namespace ubeeme { namespace moversight { /** * @brief Provides a list of strings * @class StringList * @author Jan Gäbler * @ingroup Moversight */ class StringList : public List { }; } } #endif /* STRINGLIST_H */