[go: up one dir, main page]

File: main.h

package info (click to toggle)
althea 0.5.5-2
  • links: PTS
  • area: main
  • in suites: woody
  • size: 1,196 kB
  • ctags: 725
  • sloc: cpp: 8,194; makefile: 214; sh: 44
file content (23 lines) | stat: -rw-r--r-- 479 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
//
//  main.h  --  main function for Althea v0.3
//  -- created 5/23/00 updated 5/23/00
///////////////////////////////////////////

#ifndef MAIN_H
#define MAIN_H
namespace std {};
using namespace std;

#include <gtk/gtk.h>
#include <libintl.h>
#include <locale.h>
#define _(String) gettext (String)
#include "main_window.h"
#include "new_message_window.h"
#include "support.h"
#include "Althea.h"
#include "load_config.h"
#include "save_config.h"
#include "callbacks.h"

#endif