File indexing completed on 2024-10-06 03:30:32
0001 /* 0002 SPDX-FileCopyrightText: 2016 Artem Fedoskin <afedoskin3@gmail.com> 0003 SPDX-License-Identifier: GPL-2.0-or-later 0004 */ 0005 #include "skypointlite.h" 0006 #include "skyobject.h" 0007 0008 SkyPointLite::SkyPointLite() : point(nullptr) 0009 { 0010 } 0011 0012 void SkyPointLite::setPoint(SkyPoint *p) 0013 { 0014 point = p; 0015 }