~ubuntu-branches/ubuntu/raring/sflphone/raring

« back to all changes in this revision

Viewing changes to sflphone-common/src/numbercleaner.h

  • Committer: Package Import Robot
  • Author(s): Francois Marier
  • Date: 2011-11-25 13:24:12 UTC
  • mfrom: (4.1.10 sid)
  • Revision ID: package-import@ubuntu.com-20111125132412-dc4qvhyosk74cd42
Tags: 1.0.1-4
Don't assume that arch:all packages will get built (closes: #649726)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 *  Copyright (C) 2004, 2005, 2006, 2009, 2008, 2009, 2010, 2011 Savoir-Faire Linux Inc.
3
 
 *
4
 
 *  Author: Emmanuel Milou <emmanuel.milou@savoirfairelinux.com>
5
 
 *
6
 
 *  This program is free software; you can redistribute it and/or modify
7
 
 *  it under the terms of the GNU General Public License as published by
8
 
 *  the Free Software Foundation; either version 3 of the License, or
9
 
 *  (at your option) any later version.
10
 
 *
11
 
 *  This program is distributed in the hope that it will be useful,
12
 
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
 
 *  GNU General Public License for more details.
15
 
 *
16
 
 *  You should have received a copy of the GNU General Public License
17
 
 *  along with this program; if not, write to the Free Software
18
 
 *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19
 
 *
20
 
 *  Additional permission under GNU GPL version 3 section 7:
21
 
 *
22
 
 *  If you modify this program, or any covered work, by linking or
23
 
 *  combining it with the OpenSSL project's OpenSSL library (or a
24
 
 *  modified version of that library), containing parts covered by the
25
 
 *  terms of the OpenSSL or SSLeay licenses, Savoir-Faire Linux Inc.
26
 
 *  grants you additional permission to convey the resulting work.
27
 
 *  Corresponding Source for a non-source form of such a combination
28
 
 *  shall include the source code for the parts of OpenSSL used as well
29
 
 *  as that of the covered work.
30
 
 */
31
 
 
32
 
#ifndef _NUMBER_CLEANER_H
33
 
#define _NUMBER_CLEANER_H
34
 
 
35
 
#include "logger.h"
36
 
#include <string>
37
 
 
38
 
class NumberCleaner
39
 
{
40
 
 
41
 
    public:
42
 
        NumberCleaner (void);
43
 
        ~NumberCleaner (void);
44
 
 
45
 
        std::string clean (std::string to_clean);
46
 
 
47
 
        inline void set_phone_number_prefix (std::string prefix) {
48
 
            _debug ("Number: Set phone number prefix %s", _prefix.c_str());
49
 
            _prefix = prefix;
50
 
        }
51
 
 
52
 
        inline std::string get_phone_number_prefix (void) {
53
 
            return _prefix;
54
 
        }
55
 
 
56
 
    private:
57
 
 
58
 
        std::string _prefix;
59
 
 
60
 
        void strip_char (std::string to_strip, std::string *num);
61
 
 
62
 
};
63
 
 
64
 
#endif