www.digitalmars.com         C & C++   DMDScript  

digitalmars.D - Problem on importing own modules.

reply Nahon <lburger hu.tesco-europe.com> writes:
Hi.

I'm a newbie for D, so I can't tell where is the error.
I have two modules, one named "telnet" and one named "element". I import
"telnet" into "element":
[code]
static public import telnet;
[/code]
In module "element" I define a class and a few functions like these ones:
[code]
public class oElement
 { ... }
char[] gotoxy(int x, int y)
 { ... }
char[] highlight(int on = 1)
 { ... }
[/code]
I've tested the module (as a program) and it worked fine (using module
"telnet" also).
Then I wanted to import "element" in a new (future) module:
[code]
public import element;
[/code]
If I don't use anything from "element" in main() it works fine. But when I
want to create an instance of oElement using new the compiler fails:
[message]
Error 42: Symbol Undefined __Class_7element8oElement
[/message]

What do I do wrong?

Thanks for your help.
Oct 19 2006
parent reply Tiberiu Gal <galtiberiu gmail.com> writes:
compile with
dmd telnet element //and switches
or use build (or bud)
build telnet // and switches
Oct 19 2006
parent Nahon <lburger hu.tesco-europe.com> writes:
compile with
dmd telnet element //and switches
Thx, this one works for me.
or use build (or bud)
build telnet // and switches
Oct 19 2006