PDA

Archiv verlassen und diese Seite im Standarddesign anzeigen : Syntax error before << token, aber WO?



Taktloss
21-05-2004, 20:08
/* Address verwaltung 2.0 by Takt
Member of excluded.org
takt@excluded.org

changes: rewritten and now with mySQL support!
*/

/* change these setting to your needs! */
#define FILE_SUPPORT
#define MYSQL_SUPPORT
#define FILE_DAT "/home/user/address.dat"
#define SERVER "localhost"
#define USER "root"
#define PASS "pw"
#define DATABASE "address"
#define WIN32_MYSQL "c:\mysql\include\mysql.h"


#include <iostream>
#ifdef FILE_SUPPORT
#include <fstream>
#endif
#ifdef MYSQL_SUPPORT
#if defined __WIN32__ || _MSC_VER
#include <windows.h>
#include WIN32_MYSQL
#else
#include <mysql/mysql.h>
#endif
#endif

using namespace std;

class data
{
public:
char firstname[255];
char name[255];
char street[255];
char number[5];
char town[255];
char postcode[7];
char mobile[30];
char phone[30];
char fax[30];
char email[255];
char web[1024];
char icq[15];
char country[50];
};

int main()
{
cout << "************************************************** **********\n";
cout << "*** Welcome to Takts address admin program v2.0 ***\n";
cout << "*** (c)2004 by Oliver Herms Alias takt ***\n";
cout << "*** www.excluded.org ***\n";
cout << "*** #141665405 email: takt@excluded.org ***\n";
cout << "************************************************** **********\n";

return 0;
}

int save_address(data address)
{
char searchstring[1024];
int counter = 0;
#ifdef FILE_SUPPORT
ifstream fin(FILE_DAT);
#endif
cout << "Please enter your search string: \n";
cin.getline(searchstring, sizeof(searchstring));
#ifdef FILE_SUPPORT
while(!fin.eof())
{
fin.getline(data.firstname, sizeof(data.firstname));
fin.getline(data.name, sizeof(data.name));
fin.getline(data.street, sizeof(data.street));
fin.getline(data.number, sizeof(data.number));
fin.getline(data.town, sizeof(data.town));
fin.getline(data.postcode, sizeof(data.postcode));
fin.getline(data.mobile, sizeof(data.mobile));
fin.getline(data.phone, sizeof(data.phone));
fin.getline(data.fax, sizeof(data.fax));
fin.getline(data.email, sizeof(data.email));
fin.getline(data.web, sizeof(data.web));
fin.getline(data.icq, sizeof(data.icq));
fin.getline(data.country, sizeof(data.country));

if(data.firstname == searchstring || data.name == searchstring
|| data.street == searchstring || data.number == searchstring
|| data.number == searchstring || data.fax == searchstring
|| data.town == searchstring || data.postcode == searchstring
|| data.mobile == searchstring || data.phone == searchstring
|| data.phone == searchstring || data.email == searchstring
|| data.web == searchstring || data.icq == searchstring || data.country == searchsring)
{
counter++;
cout << endl;
cout << "|---------------------------------------|\n";
cout << "|Firstname: |" << data.firstname << endl;
cout << "|Name: |" << data.name << endl;
cout << "|Address: |" << data.street << " " << data.number << endl;
cout << "|Town: |" << data.postcode << " " << data.town << endl;
cout << "|---------------------------------------|\n";
}
}
cout << endl;
fin.close();
#endif

cout << counter << " Adresse(n) gefunden." << endl;

return 0;

}

Also immer wenn ich das Programm compilieren will, bekomem ich den genannten fehler, allerdings finde ich darin keinen syntax error :-/ Wisst ihr wo er liegt?
MfG. Takt
Ps. Hier die ausgabe von g++:


taktloss@pimperator:~> g++ address.cpp
address.cpp: In function `int save_address(data)':
address.cpp:79: error: parse error before `.' token
address.cpp:79: error: parse error before `.' token
address.cpp:80: error: parse error before `.' token
address.cpp:80: error: parse error before `.' token
address.cpp:81: error: parse error before `.' token
address.cpp:81: error: parse error before `.' token
address.cpp:82: error: parse error before `.' token
address.cpp:82: error: parse error before `.' token
address.cpp:83: error: parse error before `.' token
address.cpp:83: error: parse error before `.' token
address.cpp:84: error: parse error before `.' token
address.cpp:84: error: parse error before `.' token
address.cpp:85: error: parse error before `.' token
address.cpp:85: error: parse error before `.' token
address.cpp:86: error: parse error before `.' token
address.cpp:86: error: parse error before `.' token
address.cpp:87: error: parse error before `.' token
address.cpp:87: error: parse error before `.' token
address.cpp:88: error: parse error before `.' token
address.cpp:88: error: parse error before `.' token
address.cpp:89: error: parse error before `.' token
address.cpp:89: error: parse error before `.' token
address.cpp:90: error: parse error before `.' token
address.cpp:90: error: parse error before `.' token
address.cpp:91: error: parse error before `.' token
address.cpp:91: error: parse error before `.' token
address.cpp:93: error: parse error before `.' token
address.cpp:104: error: parse error before `.' token
address.cpp:105: error: parse error before `.' token
address.cpp:106: error: parse error before `.' token
address.cpp:107: error: parse error before `.' token
address.cpp: At global scope:
address.cpp:111: error: Syntaxfehler before `<<' token
address.cpp:112: error: Syntaxfehler before `.' token
address.cpp:115: error: Syntaxfehler before `<<' token
taktloss@pimperator:~>

Henni
21-05-2004, 22:57
class data

data ist eine Klasse, aber:


fin.getline(data.firstname, sizeof(data.firstname));


Du musst natürlich eine Instanz von data haben und auf die zugreifen!

also: (für dich am einfachsten)

class DataClass
[...]

und weiter unten in saveAdress:

DataClass data;

lg, Helmut