~nesaro/adelin-backup/trunk

« back to all changes in this revision

Viewing changes to BBBInterface.cpp

  • Committer: NESTOR
  • Date: 2008-04-18 12:52:26 UTC
  • Revision ID: brbk@crislinux-20080418125226-wia2tv5qj6osh6a5
BBBInterface moved to common library

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/***************************************
2
 
 *            BBBInterface.cpp
3
 
 *   Copyright 2007-2008 Adelin ??
4
 
 * 
5
 
 ***************************************/
6
 
/*
7
 
 *    This file is part of Adelin Backup.
8
 
 *   Adelin Backup is free software: you can redistribute it and/or modify
9
 
 *   it under the terms of the GNU General Public License as published by
10
 
 *   the Free Software Foundation, either version 2 of the License, or
11
 
 *   (at your option) any later version.
12
 
 *
13
 
 *   Adelin Backup is distributed in the hope that it will be useful,
14
 
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
15
 
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16
 
 *   GNU General Public License for more details.
17
 
 *
18
 
 *   You should have received a copy of the GNU General Public License
19
 
 *   along with Adelin Backup.  If not, see <http://www.gnu.org/licenses/>.
20
 
*/
21
 
 
22
 
// --------------------------------------------------------------------------
23
 
//
24
 
// File
25
 
//      Name:    BBBInterface.cpp
26
 
//      Purpose: Interfaces con bbackupd
27
 
//      Created: 20/11/07
28
 
//
29
 
// ------------------
30
 
 
31
 
#include "BBBInterface.h"
32
 
 
33
 
 
34
 
// --------------------------------------------------------------------------
35
 
//
36
 
// Function
37
 
//      Name:  BBBInterface::BBBInterface()  
38
 
//      Purpose: Constructor
39
 
//      Created: 16/11/07
40
 
//
41
 
// ------------------
42
 
 
43
 
 
44
 
BBBInterface::BBBInterface(BOSConfiguration * configuration)
45
 
{       
46
 
    conf = configuration;
47
 
}
48