~bmhm/sig2dot-revised/trunk

« back to all changes in this revision

Viewing changes to src/gpg/colonimporter/ParsedLine.py

  • Committer: bmhm
  • Date: 2009-07-05 17:28:45 UTC
  • Revision ID: bmhm-20090705172845-mjb33fpboaul5fae
Initial Commit

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/env python3
 
2
# -*-  coding: utf-8 -*-
 
3
 
 
4
"""
 
5
    sig2dot - parses gpg-signature-output and creates a dot-file for graphviz
 
6
    Copyright (C) 2009, Benjamin Marwell
 
7
 
 
8
    This file is part of sig2dot.
 
9
 
 
10
    sig2dot is free software; you can redistribute it and/or modify
 
11
    it under the terms of the GNU General Public License as published by
 
12
    the Free Software Foundation; either version 2 of the License, or
 
13
    (at your option) any later version.
 
14
 
 
15
    sig2dot is distributed in the hope that it will be useful,
 
16
    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
17
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
18
    GNU General Public License for more details.
 
19
 
 
20
    You should have received a copy of the GNU General Public License along
 
21
    with sig2dot; if not, write to the Free Software Foundation, Inc.,
 
22
    51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 
23
"""
 
24
 
 
25
class ParsedLine(object):
 
26
    '''
 
27
    Dumymy generalist class
 
28
    '''
 
29
 
 
30
 
 
31
    def __init__(self):
 
32
        '''
 
33
        Constructor
 
34
        '''
 
35
        pass