~stolowski/kleansweep/trunk

« back to all changes in this revision

Viewing changes to src/kleansweep.h

  • Committer: Pawel Stolowski
  • Date: 2008-09-09 10:49:27 UTC
  • Revision ID: stolowski@gmail.com-20080909104927-sa7hkx4mbc6t8b9x
Inicjalizacja repozytorium - pliki wersji 0.2.9

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef __KLEANSWEEP_H
 
2
#define __KLEANSWEEP_H
 
3
 
 
4
/*! \file kleansweep.h */
 
5
 
 
6
enum DistroPkg
 
7
{
 
8
        OTHER,
 
9
        RPM,  //rpm-based, e.g. Fedora Core, Mandriva, Suse
 
10
        DPKG, //dpkg-based, e.g. Debian, Ubuntu
 
11
        TGZ,  //tgz-based, e.g. Slackware
 
12
};
 
13
 
 
14
#endif
 
15