33 lines
526 B
C++
33 lines
526 B
C++
/*
|
|
* 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<std::string> {
|
|
};
|
|
|
|
}
|
|
}
|
|
|
|
#endif /* STRINGLIST_H */
|
|
|