File cleanup

This commit is contained in:
emeric
2014-08-23 12:09:41 +02:00
parent 804b88ac50
commit f80f052d55
2 changed files with 0 additions and 66 deletions
View File
-66
View File
@@ -1,66 +0,0 @@
#ifndef USER_HPP__
#define USER_HPP__
#include <Wt/Dbo/Dbo.hpp>
// Save user preferences for each view
class UserViewPreferences
{
public:
private:
std::string agent;
};
class UserPreferences
{
public:
private:
// Prefered format?
std::size_t maxAudioBitrate;
std::size_t maxVideoBitrate;
};
class UserRights
{
public:
private:
std::size_t _maxAudioBitrate;
std::size_t _maxVideoBitrate;
bool _canDownload;
};
class User
{
public:
private:
Wt::Dbo::Ptr< UserRights > _rights;
Wt::Dbo::Ptr< UserPreferences > _preferences;
};
#endif