Connection: Alphabetize friend class/struct declarations

This commit is contained in:
Lioncash 2019-08-23 13:40:01 -04:00
parent 6492117d60
commit 11b3bf0889
1 changed files with 17 additions and 16 deletions

View File

@ -40,9 +40,10 @@
namespace hecl::blender { namespace hecl::blender {
using namespace std::literals; using namespace std::literals;
extern logvisor::Module BlenderLog;
class HMDLBuffers;
class Connection; class Connection;
class HMDLBuffers;
extern logvisor::Module BlenderLog;
struct PoolSkinIndex { struct PoolSkinIndex {
size_t m_poolSz = 0; size_t m_poolSz = 0;
@ -671,30 +672,30 @@ public:
}; };
class Connection { class Connection {
friend class ANIMOutStream;
friend class DataStream; friend class DataStream;
friend class PyOutStream; friend class PyOutStream;
friend class ANIMOutStream; friend struct Action;
friend struct PyOutStream::StreamBuf; friend struct Actor;
friend struct Mesh; friend struct Armature;
friend struct Material; friend struct Bone;
friend struct Boolean;
friend struct ColMesh; friend struct ColMesh;
friend struct World; friend struct Float;
friend struct Index;
friend struct Light; friend struct Light;
friend struct MapArea; friend struct MapArea;
friend struct MapUniverse; friend struct MapUniverse;
friend struct Actor; friend struct Material;
friend struct Armature; friend struct Matrix3f;
friend struct Action; friend struct Matrix4f;
friend struct Bone; friend struct Mesh;
friend struct PathMesh; friend struct PathMesh;
friend struct PyOutStream::StreamBuf;
friend struct Vector2f; friend struct Vector2f;
friend struct Vector3f; friend struct Vector3f;
friend struct Vector4f; friend struct Vector4f;
friend struct Matrix3f; friend struct World;
friend struct Matrix4f;
friend struct Index;
friend struct Float;
friend struct Boolean;
std::atomic_bool m_lock = {false}; std::atomic_bool m_lock = {false};
bool m_pyStreamActive = false; bool m_pyStreamActive = false;