Forum Discussion
Altera_Forum
Honored Contributor
19 years ago --- Quote Start --- originally posted by paolo.gai+jun 29 2006, 03:18 pm--><div class='quotetop'>quote (paolo.gai @ jun 29 2006, 03:18 pm)</div>
--- quote start ---
<!--quotebegin-slsnios@Jun 29 2006, 10:39 AM but it gives me error of undeclared (first use this function)'.
so if anybody knows please reply on it.
<div align='right'><{post_snapback}> (index.php?act=findpost&pid=16513)
--- quote end ---
--- Quote End --- probably you didn't include the .h/.hpp file of your class? Paolo <div align='right'><{post_snapback}> (index.php?act=findpost&pid=16519)</div> [/b] --- Quote End --- This is my class in Managed Library. # include "iostream.h" class Form { public: Form(); }; Form::Form() { printf("Hello NIOS"); } I want to use this managed library in my C/C++ application. # include<iostream.h> int main() { Form *frm = new Form(); return 0; } This is the code of application file even though it gives me error.