私は次のプログラムを持っています。これはオブジェクト指向であり、いくつかのオブジェクトを格納する構造'array'(私が定義した構造を使用する必要があるため、vector.hはカウントされません)を持っています。クラス関数と構造体はM.cpp(メイン)では問題なく機能しますが、controller.cppからそれらを呼び出そうとすると、参照エラーが発生します。
ListStruct.h:
template <class T>
struct Array{
int days;
T * M;
Array( int size ) : days(size), M(new T[size])
{
}
~Array()
{
delete[] M;
}
};
void currentDay();
template <class T>
void add(int,int,Array<T> &);
template <class T>
void dummyData(Array<T> &);
ListStruct.cpp
#include <stdlib.h>
#include <iostream>
#include <ctime>
#include "ListStruc.h"
#include "Expe.h"
using namespace std;
int currDay;
void currentDay(){
time_t t = time(0); // get time now
struct tm * now = localtime( & t );
::currDay = now->tm_mon + 1;
}
void add(int cant, int type,Array <Expe> &A){
//Adds to current day the amount to a specific type
int newVal;
newVal = A.M[currDay].getObj(type);
newVal += cant;
A.M[currDay].editObj(type,newVal);
}
void dummyData(Array <Expe> &A){
for(int i=0; i<31; i++){
A.M[i].Expe::setObj((i*3),(i*1),(i*6),(i*2),(i*4),(i*5));
}
}
M.cpp-プログラムの主な機能:
#include <iostream>
#include "Expe.h"
#include "ListStruc.h"
#include "Controller.h"
using namespace std;
int main(){
//Main function of the program. no pre/ post condition.
Array <Expe> A(31); // Work space
Array <Expe> B(31); // Backup space
cout<<&A; // testing for allocation
cout<<&B;
Expe a;
a.setObj(5,5,5,5,5,5); // checking class functions
a.printObj();
A.M[1]=a;
A.M[1].printObj();
//check dummy FOR-, WORKS!
for(int i=0; i<31; i++){
A.M[i].Expe::setObj((i*3),(i*1),(i*6),(i*2),(i*4),(i*5));
}
a.editObj(3,100);
a.printObj(); // check objects calling, WORKS!
cout<<"Obj A.[10]:";
A.M[10].printObj();
cout<<endl<<"Obj A.[29]:";
A.M[29].printObj();
dummyData(A); ///////ERROR/////////
エラー:
D:\c++\Begin\Lab3-5_OOP\Debug/../M.cpp:44: undefined reference to `void dummyData<Expe>(Array<Expe>&)'
私は考えられるすべてのことを試しました...インターネットをサーフィンしましたが、それでもその参照エラーの理由を見つけることができませんでした。