1 /**
2  * The package provides the functionaly to loading and manage a collection of properties
3  *
4  * Copyright: (c) 2015-2016, Milofon Project.
5  * License: Subject to the terms of the BSD license, as written in the included LICENSE.txt file.
6  * Authors: Maksim Galanin
7  */
8 module proped;
9 
10 
11 public
12 {
13     version(Have_sdlang_d) 
14         import proped.loaders.sdl : SDLPropertiesLoader;
15     version(Have_dyaml) 
16         import proped.loaders.yaml : YAMLPropertiesLoader;
17 
18     import proped.loaders.json : JSONPropertiesLoader;
19     import proped.loaders.properties : PropertiesPropertiesLoader;
20 
21     import proped.properties : Properties, PropNode;
22     import proped.loader : PropertiesLoader, loadProperties, Loader, createPropertiesLoader;
23     import proped.exception : PropertiesException, PropertiesNotFoundException;
24 }
25