~ubuntu-branches/ubuntu/oneiric/dammit/oneiric

« back to all changes in this revision

Viewing changes to libdammit/damnfile.hpp

  • Committer: Bazaar Package Importer
  • Author(s): Simon Richter
  • Date: 2008-05-25 18:09:39 UTC
  • Revision ID: james.westby@ubuntu.com-20080525180939-iguzr0jb41w5s1oe
Tags: upstream-0~preview1
ImportĀ upstreamĀ versionĀ 0~preview1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* Copyright 2008 Simon Richter <Simon.Richter@hogyros.de>
 
2
 *
 
3
 * Released under the GNU General Public Licence version 3.
 
4
 */
 
5
 
 
6
#ifndef dammit_damnfile_hpp_
 
7
#define dammit_damnfile_hpp_ 1
 
8
 
 
9
#include "project.hpp"
 
10
 
 
11
#include <memory>
 
12
 
 
13
namespace dammit {
 
14
 
 
15
std::auto_ptr<project> load_projects_recursive(path const &root);
 
16
std::auto_ptr<project> load_project_file(path const &project_path);
 
17
 
 
18
}
 
19
 
 
20
#endif