mirror of
https://github.com/tfussell/xlnt.git
synced 2024-03-22 13:11:17 +08:00
20 lines
244 B
C++
20 lines
244 B
C++
#pragma once
|
|
|
|
namespace xlnt {
|
|
|
|
class worksheet;
|
|
struct drawing_struct;
|
|
|
|
class drawing
|
|
{
|
|
public:
|
|
drawing();
|
|
|
|
private:
|
|
friend class worksheet;
|
|
drawing(drawing_struct *root);
|
|
drawing_struct *root_;
|
|
};
|
|
|
|
} // namespace xlnt
|