aboutsummaryrefslogtreecommitdiff
path: root/include/Cache.hpp
blob: 97ef495d69403c19c882c38d974a09f75735347b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#pragma once

#include <boost/filesystem/path.hpp>

namespace dchat
{
    class Cache
    {
    public:
        Cache();
        ~Cache();
        
        // Creates directory if it doesn't exist (recursively). Throws boost exception on failure
        static boost::filesystem::path getDchatDir();
    };
}