-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
libdonet: Skeleton for DC field declaration elements
i need new adhd meds. i am barely focusing on all things in life rn
- Loading branch information
Showing
10 changed files
with
154 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
// DONET SOFTWARE | ||
// Copyright (c) 2024, Donet Authors. | ||
// | ||
// This program is free software; you can redistribute it and/or modify | ||
// it under the terms of the GNU Affero General Public License version 3. | ||
// You should have received a copy of this license along | ||
// with this source code in a file named "LICENSE." | ||
// | ||
// This program is distributed in the hope that it will be useful, | ||
// but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
// GNU General Public License for more details. | ||
// | ||
// You should have received a copy of the GNU Affero General Public License | ||
// along with this program; if not, write to the Free Software Foundation, | ||
// Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. | ||
|
||
use crate::dcfield::DCField; | ||
|
||
struct DCAtomicField { | ||
_dcatomicfield_parent: DCField, | ||
} | ||
|
||
/// See issue #22. | ||
impl std::ops::Deref for DCAtomicField { | ||
type Target = DCField; | ||
fn deref(&self) -> &Self::Target { | ||
&self._dcatomicfield_parent | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
// DONET SOFTWARE | ||
// Copyright (c) 2024, Donet Authors. | ||
// | ||
// This program is free software; you can redistribute it and/or modify | ||
// it under the terms of the GNU Affero General Public License version 3. | ||
// You should have received a copy of this license along | ||
// with this source code in a file named "LICENSE." | ||
// | ||
// This program is distributed in the hope that it will be useful, | ||
// but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
// GNU General Public License for more details. | ||
// | ||
// You should have received a copy of the GNU Affero General Public License | ||
// along with this program; if not, write to the Free Software Foundation, | ||
// Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. | ||
|
||
use crate::dcfield::DCField; | ||
|
||
struct DCMolecularField { | ||
_dcmolecularfield_parent: DCField, | ||
} | ||
|
||
/// See issue #22. | ||
impl std::ops::Deref for DCMolecularField { | ||
type Target = DCField; | ||
fn deref(&self) -> &Self::Target { | ||
&self._dcmolecularfield_parent | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
// DONET SOFTWARE | ||
// Copyright (c) 2024, Donet Authors. | ||
// | ||
// This program is free software; you can redistribute it and/or modify | ||
// it under the terms of the GNU Affero General Public License version 3. | ||
// You should have received a copy of this license along | ||
// with this source code in a file named "LICENSE." | ||
// | ||
// This program is distributed in the hope that it will be useful, | ||
// but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
// GNU General Public License for more details. | ||
// | ||
// You should have received a copy of the GNU Affero General Public License | ||
// along with this program; if not, write to the Free Software Foundation, | ||
// Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. | ||
|
||
use crate::dcfield::DCField; | ||
|
||
struct DCParameterField { | ||
_dcparameterfield_parent: DCField, | ||
} | ||
|
||
/// See issue #22. | ||
impl std::ops::Deref for DCParameterField { | ||
type Target = DCField; | ||
fn deref(&self) -> &Self::Target { | ||
&self._dcparameterfield_parent | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters