amk
amk

Reputation: 340

What is the purpose of .dfm files in C++

I have used C++ in Unix and I am aware of .h and .cpp files, but I have never worked on C++ builder and now I have got a project that contains .cpp, .h and .dfm files. So what is the the purpose of .dfm files and how do we use it?

Thanks in advance.

Upvotes: 4

Views: 5818

Answers (1)

Anthony Burg
Anthony Burg

Reputation: 570

dfm files describe a form, and typically have an associated cpp file and h file for other aspects of the form's class. They are typically edited using the IDE in C++ Builder.

Upvotes: 6

Related Questions