~ubuntu-branches/ubuntu/jaunty/mlview/jaunty

« back to all changes in this revision

Viewing changes to src/mlview-action.h

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2004-05-11 23:55:05 UTC
  • Revision ID: james.westby@ubuntu.com-20040511235505-ktq97vaz6sl5amy7
Tags: upstream-0.6.3
ImportĀ upstreamĀ versionĀ 0.6.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* -*- Mode: C; indent-tabs-mode:nil; c-basic-offset: 8-*- */
 
2
 
 
3
/*
 
4
 *This file is part of MlView.
 
5
 *
 
6
 *MlView is free software; you can redistribute 
 
7
 *it and/or modify it under the terms of 
 
8
 *the GNU General Public License as published by the 
 
9
 *Free Software Foundation; either version 2, 
 
10
 *or (at your option) any later version.
 
11
 *
 
12
 *GNU MlView is distributed in the hope that it will 
 
13
 *be useful, but WITHOUT ANY WARRANTY; 
 
14
 *without even the implied warranty of 
 
15
 *MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 
16
 *See the GNU General Public License for more details.
 
17
 *
 
18
 *You should have received a copy of the 
 
19
 *GNU General Public License along with MlView; 
 
20
 *see the file COPYING. 
 
21
 *If not, write to the Free Software Foundation, 
 
22
 *Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 
23
 *
 
24
 *See COPYRIGHT file for copyright information.
 
25
 */
 
26
 
 
27
#ifndef __MLVIEW_ACTION_H__
 
28
#define __MLVIEW_ACTION_H__
 
29
 
 
30
#include "mlview-utils.h"
 
31
 
 
32
/**
 
33
 *@file 
 
34
 *the declaration of the
 
35
 *#MlViewAction data structure.
 
36
 */
 
37
typedef struct _MlViewAction MlViewAction ;
 
38
 
 
39
/**
 
40
 *This data structure abstracts an
 
41
 *editing action that can be performed by
 
42
 *the MlViewEditor.
 
43
 */
 
44
struct _MlViewAction {        
 
45
        guchar *name ;
 
46
} ;
 
47
 
 
48
#endif